home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / PROGRAMMING / GCC / CC1.ZIP / !gcc / files / c / hellow < prev   
Text File  |  1996-10-27  |  138b  |  12 lines

  1. /* c.hellow.
  2.  
  3.    The simple Hello World application.  */
  4.  
  5. #include <stdio.h>
  6.  
  7. int main (void)
  8. {
  9.   printf ("Hello World\n");
  10.   return 0;
  11. }
  12.